home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / wnos5src.zip / MODEM.H < prev    next >
Text File  |  1993-10-09  |  438b  |  24 lines

  1. #ifndef _MODEM_H
  2. #define _MODEM_H
  3.  
  4.  
  5. static struct tipcb {
  6.     struct tipcb *next;
  7.     struct proc *proc;
  8.     struct proc *in;
  9.     struct iface *iface;
  10.     int (*rawsave) __ARGS((struct iface *,struct mbuf *));
  11.     int s;
  12.     int echo;
  13.     struct timer timer;
  14. };
  15.  
  16. #define    NULLTIP    (struct tipcb *)0
  17.  
  18. extern char TActive[];
  19. extern unsigned Tiptimeout;
  20.  
  21. void tip_in __ARGS((int dev,void *n1,void *n2));
  22. void tipidle __ARGS((void *t));
  23.  
  24. #endif